Method: Mongoose::LinearSearch#>=

Defined in:
lib/mongoose/linear_search.rb

#>=(other) ⇒ Object



50
51
52
53
54
55
56
57
58
# File 'lib/mongoose/linear_search.rb', line 50

def >=(other)
  return search_table do |table_value|
    if table_value.nil? 
      false
    else
      table_value >= other 
    end
  end
end